bitkeeper revision 1.583 (3fafbe7fI5Lp1b80mt9IscwVvUn4nA)
authorbr260@laudney.cl.cam.ac.uk <br260@laudney.cl.cam.ac.uk>
Mon, 10 Nov 2003 16:36:15 +0000 (16:36 +0000)
committerbr260@laudney.cl.cam.ac.uk <br260@laudney.cl.cam.ac.uk>
Mon, 10 Nov 2003 16:36:15 +0000 (16:36 +0000)
Change Xen image name from 'image' to 'xen', 'image.gz' to 'xen.gz'.
Change XenoLinux image name from 'image' to 'xenolinux', 'image.gz' to 'xenolinux.gz'.

BitKeeper/etc/logging_ok
xen/Makefile
xen/Rules.mk
xenolinux-2.4.22-sparse/arch/xeno/Makefile
xenolinux-2.4.22-sparse/arch/xeno/boot/Makefile

index b66e37b978b67d2543c3b02a5ddfea3f6054f925..673d59798e334fa4e237e4a1487480c73bfd6fde 100644 (file)
@@ -6,6 +6,7 @@ akw27@labyrinth.cl.cam.ac.uk
 akw27@plucky.localdomain
 bd240@boulderdash.cl.cam.ac.uk
 bd240@labyrinth.cl.cam.ac.uk
+br260@laudney.cl.cam.ac.uk
 iap10@freefall.cl.cam.ac.uk
 iap10@labyrinth.cl.cam.ac.uk
 iap10@striker.cl.cam.ac.uk
index f7d8c98cd81cf25474b9bfd63794e7f89715a033..742cf4561a7ba9fbc1cb86560bcd7c0f4a6c9d87 100644 (file)
@@ -15,7 +15,7 @@ default: $(TARGET)
        gzip -f -9 < $(TARGET) > $(TARGET).gz
 
 debug: 
-       objdump -D -S image >image.s
+       objdump -D -S $(TARGET) > $(TARGET).s
 
 install: $(TARGET)
        gzip -f -9 < $(TARGET) > $(TARGET).gz
@@ -76,5 +76,5 @@ TAGS:
        find include -type d \( -name "asm-*" -o -name config \) -prune -o -name '*.h' -print | xargs etags -a
        find $(SUBDIRS) -name '*.[ch]' | xargs etags -a
 MAP:
-       nm image | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map
+       nm $(TARGET) | grep -v '\(compiled\)\|\(\.o$$\)\|\( [aUw] \)\|\(\.\.ng$$\)\|\(LASH[RL]DI\)' | sort > System.map
 
index 5864799e0dda4d9412c15afa553e49dc25745716..a34a740f7689e9fcb0609fa80490be0144dd8f18 100644 (file)
@@ -1,7 +1,6 @@
-
 ARCH    := i386
 
-TARGET  := $(BASEDIR)/image
+TARGET  := $(BASEDIR)/xen
 HDRS    := $(wildcard $(BASEDIR)/include/xeno/*.h)
 HDRS    += $(wildcard $(BASEDIR)/include/scsi/*.h)
 HDRS    += $(wildcard $(BASEDIR)/include/hypervisor-ifs/*.h)
index 9077bfb8a2b36c4968d12d743ead24d7dc900e17..51a20235d295a018128c54e166019d4dca1b1cb3 100644 (file)
@@ -93,11 +93,11 @@ FORCE: ;
 .PHONY: bzImage compressed clean archclean archmrproper archdep
 
 bzImage: vmlinux
-       @$(MAKEBOOT) image.gz
+       @$(MAKEBOOT) xenolinux.gz
 
 install: bzImage
        mkdir -p ../install/boot
-       cp -a arch/$(ARCH)/boot/image.gz ../install/boot/xenolinux.gz
+       cp -a arch/$(ARCH)/boot/xenolinux.gz ../install/boot/xenolinux.gz
 
 archclean:
        @$(MAKEBOOT) clean
index 252daf50bfae105847b6b76f3845f8491f51206e..290783cc626ee63a79b12e784d342f55b324e42d 100644 (file)
@@ -2,21 +2,21 @@
 # arch/xeno/boot/Makefile
 #
 
-image.gz: image
+xenolinux.gz: xenolinux
        gzip -f -9 < $< > $@
 
-image: $(TOPDIR)/vmlinux
+xenolinux: $(TOPDIR)/vmlinux
        # Guest OS header -- first 8 bytes are identifier 'XenoGues'.
        echo -e -n 'XenoGues' >$@ 
        # Guest OS header -- next 4 bytes are load address (0xC0000000).
        echo -e -n '\000\000\000\300' >>$@
-       $(OBJCOPY) $< image.body
+       $(OBJCOPY) $< xenolinux.body
        # Guest OS header is immediately followed by raw OS image.
        # Start address must be at byte 0.
-       cat image.body >>$@
-       rm -f image.body
+       cat xenolinux.body >>$@
+       rm -f xenolinux.body
 
 dep:
 
 clean:
-       rm -f image image.gz
+       rm -f xenolinux xenolinux.gz
\ No newline at end of file